home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / rbcomm34.zip / OPUS170.MAC < prev    next >
Text File  |  1993-01-03  |  567b  |  26 lines

  1.  
  2. ; automatic logon routine
  3. AUTO    MULTI
  4.     PAUSE    6
  5.     TEXT    "\r"              ; get the BBS's attention
  6.     PAUSE    9
  7.     TEXT    "\r"
  8.     PAUSE    9
  9.     UNTIL    SUCCESS
  10.        {
  11.        TEXT    "\r"
  12.        WAITFOR 1 " "
  13.        }
  14.     WAITFOR 20 "FULL NAME:"   ; wait for login prompt
  15.     TEXT    "Your Name;y\r"  ; and send name
  16.     WAITFOR 10 "ord:"         ; wait for password prompt
  17.     PASSWORD          ; send the password defined in the directory
  18.     TEXT    "\r"              ; finish up password with a Return
  19.     WHEN    1 "Press"         ; press Enter when asked
  20.       TEXT "\r"
  21.     END
  22.  
  23. #include "opus.mac"
  24.  
  25.  
  26.